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(); }
///